/* Colours & Fonts*/
:root {
    --primary: #06A3DA;
    --secondary: #34AD54;
    --light: #EEF9FF;
    --dark: #091E3E;
    --bs-blue: #0d6efd;
    --bs-indigo: #6610f2;
    --bs-purple: #6f42c1;
    --bs-pink: #d63384;
    --bs-red: #dc3545;
    --bs-orange: #fd7e14;
    --bs-yellow: #ffc107;
    --bs-green: #198754;
    --bs-teal: #20c997;
    --bs-cyan: #0dcaf0;
    --bs-white: #fff;
    --bs-gray: #6c757d;
    --bs-gray-dark: #343a40;
    --bs-primary: #06A3DA;
    --bs-secondary: #34AD54;
    --bs-success: #198754;
    --bs-info: #0dcaf0;
    --bs-warning: #ffc107;
    --bs-danger: #dc3545;
    --bs-light: #EEF9FF;
    --bs-dark: #091E3E;
    --bs-font-sans-serif: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    --bs-font-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
    --bs-gradient: linear-gradient(180deg, rgba(255,255,255,0.15), rgba(255,255,255,0))
    
}


/*** Spinner ***/
.spinner {
    width: 40px;
    height: 40px;
    background: var(--primary);
    margin: 100px auto;
    -webkit-animation: sk-rotateplane 1.2s infinite ease-in-out;
    animation: sk-rotateplane 1.2s infinite ease-in-out;
}

@-webkit-keyframes sk-rotateplane {
    0% {
        -webkit-transform: perspective(120px)
    }
    50% {
        -webkit-transform: perspective(120px) rotateY(180deg)
    }
    100% {
        -webkit-transform: perspective(120px) rotateY(180deg) rotateX(180deg)
    }
}

@keyframes sk-rotateplane {
    0% {
        transform: perspective(120px) rotateX(0deg) rotateY(0deg);
        -webkit-transform: perspective(120px) rotateX(0deg) rotateY(0deg)
    }
    50% {
        transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg);
        -webkit-transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg)
    }
    100% {
        transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg);
        -webkit-transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg);
    }
}

#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}


/*** Heading ***/
h1,
h2,
.fw-bold {
    font-weight: 800 !important;
}

h3,
h4,
.fw-semi-bold {
    font-weight: 700 !important;
}

h5,
h6,
.fw-medium {
    font-weight: 600 !important;
}


/*** Button ***/
.btn {
    font-family: 'Nunito', sans-serif;
    font-weight: 600;
    transition: .5s;
}

.btn-primary,
.btn-secondary {
    color: #FFFFFF;
    box-shadow: inset 0 0 0 50px transparent;
}

.btn-primary:hover {
    box-shadow: inset 0 0 0 0 var(--primary);
}

.btn-secondary:hover {
    box-shadow: inset 0 0 0 0 var(--secondary);
}

.btn-square {
    width: 36px;
    height: 36px;
}

.btn-sm-square {
    width: 30px;
    height: 30px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding-left: 0;
    padding-right: 0;
    text-align: center;
}

.carousel-inner img {
    height: 30%; /* You can change this value as needed */
    /* object-fit: cover; Ensures images fill the area without distortion */
    width: 60%; /* Full width */
  }

  @media (max-width: 768px) {
    .carousel-inner img {
      height: 25vh; /* Smaller height for smaller screens */
    }
  }

@media (max-width: 576px) {
    .btn {
        font-size: 12px; /* Further adjust font size for extra small screens */
        padding: 1px;
    }


}



@media (min-width: 320px) and (max-width: 423px) {
    /* Styling for dropdown menu on small screens */
    .dropdown-menu {
        width: 100%; /* Full width for better alignment on small screens */
        max-height: 200px; /* Limit height to avoid overflowing on smaller devices */
        overflow-y: auto; /* Enable scrolling if the content exceeds max-height */
        padding: 10px 0; /* Add padding for touch-friendly spacing */
        font-size: 14px; /* Smaller font size for mobile readability */
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15); /* Subtle shadow for visibility */
        border-radius: 6px; /* Slightly rounded corners for a modern look */
    }

    .dropdown-item {
        font-size: 14px; /* Consistent font size with menu */
        text-align: left; /* Left-align the text */
        transition: background-color 0.3s ease; /* Smooth transition for hover effects */
    }

    .dropdown-item:hover {
        background-color: var(--primary-light); /* Lighter background on hover for clarity */
        color: var(--primary-dark); /* Contrast the hover text color */
    }

    /* Optional: Make dropdown full screen width */
    .dropdown-menu-fullwidth {
       
        right: 0;
        width: 100vw; /* Use viewport width for full screen dropdown */
    }

    /* Adjust arrow/caret positioning */
    .dropdown-toggle::after {
        position: absolute;
        right: 10px; /* Move caret to the right for better mobile placement */
        top: 50%;
        transform: translateY(-50%); /* Vertically center the caret */
    }
}




/****Header page with image*****/
.aiheaderimage {
    position: relative;
    width: 100%;
    height: 200px; /* Ensure enough height */
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden; /* Ensure the image doesn't overflow */
}

.header-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensures the image covers the container */
    z-index: 0; /* Keep image behind the text */
}

.title {
    position: relative;
    font-size: 3rem;
    color: white;
    z-index: 1; /* Ensure the text stays on top of the image */
}

.aiheaderimage::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4); /* Dark overlay for better text visibility */
    z-index: 1;
}

/*** Carousel ***/
/* Content on carousel */
.carousel-caption {
    bottom:5%;
    left: 12%;
    color: var(--dark);
    font-family: 'Courier New', Courier, monospace;
    display: flex;                 /* Enable Flexbox layout */
    flex-direction: column;       /* Arrange items in a column */
    align-items: flex-start;      /* Align items to the left */
    justify-content: flex-start;     /* Align items towards the bottom */
 
          
    
}

.carousel-controls {
    position: absolute;
    bottom: 10px; /* Position the buttons at the bottom */
    right: 10px;  /* Align them to the right */
    display: flex;
    gap: 10px;    /* Add space between the buttons */
    
}





@media (max-width: 423px) {
    .carousel-caption h5 {
        font-size: 14px; /* Smaller size for very small screens */
        font-weight: 500 !important;
    }

    .carousel-caption h1 {
        font-size: 30px; /* Slightly larger for small screens */
        font-weight: 600 !important;
    }


}



.carousel-control-prev,
.carousel-control-next {
    width: 10%;

}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 3rem;
    height: 3rem;
    color: #28a745;
  
}


/* underline effect start here */
        /*** Section Title Styling ***/
        .section-title {
            position: relative;
            padding-bottom: 5px;
            display: inline-block;
            margin-bottom: 10px;
        }

        /*** Base line ***/
        .section-title::before {
            content: "";
            position: absolute;
            width: 150px;
            height: 5px;
            left: 0;
            bottom: 0;
            background: #06A3DA;
            border-radius: 2px;
        }

        /*** Center alignment for line ***/
        .section-title.text-center::before {
            left: 50%;
            transform: translateX(-50%);
        }

        /*** Small variation ***/
        .section-title.section-title-sm::before {
            width: 90px;
            height: 3px;
        }

        /*** Moving highlight dot ***/
        .section-title::after {
            content: "";
            position: absolute;
            width: 6px;
            height: 5px;
            bottom: 0;
            background: #ffffff;
            animation: section-title-run 5s infinite linear;
        }

        /*** Smaller dot size for small titles ***/
        .section-title.section-title-sm::after {
            width: 4px;
            height: 3px;
            animation: section-title-run-sm 5s infinite linear;
        }

        /*** Centered version animation ***/
        .section-title.text-center::after {
            animation: section-title-run-center 5s infinite linear;
        }

        /*** Keyframes for left-aligned titles ***/
        @keyframes section-title-run {
            0% { left: 0; }
            50% { left: 144px; }
            100% { left: 0; }
        }

        /*** Keyframes for centered titles ***/
        @keyframes section-title-run-center {
            0% { left: 50%; transform: translateX(-75px); }
            50% { left: 50%; transform: translateX(45px); }
            100% { left: 50%; transform: translateX(-75px); }
        }

        /*** Keyframes for small left-aligned titles ***/
        @keyframes section-title-run-sm {
            0% { left: 0; }
            50% { left: 85px; }
            100% { left: 0; }
        }
        /* underline effect end here */

        
        a {
            text-decoration: none !important;
        }
        /* a:hover {
            text-decoration: underline !important;
        } */

  
        @media (max-width: 768px) {
        /* underline effect start here */
        .section-title::before {
            left: 50%;
            transform: translateX(-50%);
        }

        .section-title::after {
            left: 50%;
            transform: translateX(-75px);
            animation: section-title-run-center 5s infinite linear;
        }

        .section-title.section-title-sm::after {
            transform: translateX(-45px);
            animation: section-title-run-center-sm 5s infinite linear;
        }

        @keyframes section-title-run-center-sm {
            0% { left: 50%; transform: translateX(-45px); }
            50% { left: 50%; transform: translateX(40px); }
            100% { left: 50%; transform: translateX(-45px); }
        }
        /* underline effect end here */
    }


/*** Service ***/
.service-item {
    position: relative;
    height: 300px;
    padding: 0 30px;
    transition: .5s;
}

.service-item .service-icon {
    margin-bottom: 30px;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary);
    border-radius: 2px;
    transform: rotate(-45deg);
}

.service-item .service-icon i {
    transform: rotate(45deg);
}

.service-item a.btn {
    position: absolute;
    width: 60px;
    bottom: -48px;
    left: 50%;
    margin-left: -30px;
    opacity: 0;
}

.service-item:hover a.btn {
    bottom: -24px;
    opacity: 1;
}


/*** Testimonial ***/
.testimonial-carousel .owl-dots {
    margin-top: 15px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.testimonial-carousel .owl-dot {
    position: relative;
    display: inline-block;
    margin: 0 5px;
    width: 15px;
    height: 15px;
    background: #DDDDDD;
    border-radius: 2px;
    transition: .5s;
}

.testimonial-carousel .owl-dot.active {
    width: 30px;
    background: var(--primary);
}

.testimonial-carousel .owl-item.center {
    position: relative;
    z-index: 1;
}

.testimonial-carousel .owl-item .testimonial-item {
    transition: .5s;
}

.testimonial-carousel .owl-item.center .testimonial-item {
    background: #FFFFFF !important;
    box-shadow: 0 0 30px #DDDDDD;
}


/*** Team ***/
.team-item {
    transition: .5s;
}

.team-social {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .5s;
}

.team-social a.btn {
    position: relative;
    margin: 0 3px;
    margin-top: 100px;
    opacity: 0;
}

.team-item:hover {
    box-shadow: 0 0 30px #DDDDDD;
}

.team-item:hover .team-social {
    background: rgba(9, 30, 62, .7);
}

.team-item:hover .team-social a.btn:first-child {
    opacity: 1;
    margin-top: 0;
    transition: .3s 0s;
}

.team-item:hover .team-social a.btn:nth-child(2) {
    opacity: 1;
    margin-top: 0;
    transition: .3s .05s;
}

.team-item:hover .team-social a.btn:nth-child(3) {
    opacity: 1;
    margin-top: 0;
    transition: .3s .1s;
}

.team-item:hover .team-social a.btn:nth-child(4) {
    opacity: 1;
    margin-top: 0;
    transition: .3s .15s;
}

.team-item .team-img img,
.blog-item .blog-img img  {
    transition: .5s;
}

.team-item:hover .team-img img,
.blog-item:hover .blog-img img {
    transform: scale(1.15);
}


/*** Miscellaneous ***/
@media (min-width: 320px) {
    .facts {
        position: relative;
        margin-top: -75px;
        z-index: 1;
    }
}

.back-to-top {
    position: fixed;
    display: none;
    right: 45px;
    bottom: 45px;
    z-index: 99;
}

.bg-header {
    background: linear-gradient(rgba(9, 30, 62, .7), rgba(9, 30, 62, .7)), url(..img/carousel-1.jpg) center center no-repeat;
    background-size: cover;
}

.link-animated a {
    transition: .5s;
}

.link-animated a:hover {
    padding-left: 10px;
}

@media (min-width: 320px) {
    .footer-about {
        margin-bottom: -75px;
        --bs-gutter-x: 0;
        --bs-gutter-x: 1.0;
    }
}

/* two texts */

.unique-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.unique-content {
    display: flex;
    align-items: center; /* Vertically centers all child elements */
    max-width: 1200px; /* Adjust as needed */
    padding: 20px;
}

.unique-left {
    margin-right: 10px;
    text-align: left;
}

.unique-heading {
    font-size: 1.5rem; /* Adjust as needed */
    margin-bottom: 10px;
}

.unique-button {
    padding: 10px 20px;
    font-size: 1rem;
    cursor: pointer;
}

.unique-divider {
    border-left: 2px solid #000; /* Adjust color and width as needed */
    height: auto; /* Allow the height to adjust based on the content */
    margin: 0 20px;
    align-self: center; /* Ensure the divider is vertically centered */
    min-height: 100px; /* Set a minimum height to make sure the divider is visible */
}

.unique-right {
    margin-left: 20px;
    max-width: 1500px !important; /* Increase the width to allow more text */
}


.unique-paragraph {
    font-size: 1.25rem; /* Increase the font size */
    word-wrap: break-word;
    overflow-wrap: break-word;
}




/* two text styling end */



/* image hover shadow effect start */

.custom-image-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 500px;
    height: 500px;
    margin: 0 auto;
}

.custom-hover-image {
    max-width: 100%;
    max-height: 100%;
    transition: box-shadow 0.3s ease;
    border-radius: 25px;
}

.custom-hover-image:hover {
    box-shadow: 24px 24px 25px rgba(0, 0, 0, 0.5); /* Even shadow around all sides */
}


/* image hover shadow effect end */


/* Trusted Wordwide styling start here */
.unique-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap; /* Allow wrapping of content */
}

.unique-left {
    flex: 1;
    margin-right: 20px;
}

.unique-paragraphh {
    font-size: 1rem;
    word-wrap: break-word;
    overflow-wrap: break-word;
    max-width: calc(50ch * 1.2); /* Adjust this value to fit 6 characters per line */
    line-height: 1.5; /* Adjust line height as needed */
}

.unique-right {
    flex: 1;
    display: flex;
    flex-wrap: wrap; /* Allow cards to wrap into rows */
    gap: 20px; /* Space between custom cards */
}

.custom-card {
    width: 100%;
    max-width: calc(50% - 10px); /* Two cards per row */
}

.custom-card-img {
    width: 50px;
    height: auto;
    border-radius: 8px; /* Add border radius to the image if needed */
    height: 50px;
}

.custom-card-body {
    padding: 15px;
}

.custom-card-title {
    font-size: 1.25rem;
    margin-bottom: 10px;
}

.custom-card-text {
    font-size: 1rem;
    margin-bottom: 15px;
}


/* Trusted Wordwide styling end here */



/* Help me decide start */

.full-width-container {
    width: 90%;
    
    box-sizing: border-box;
    background-color: #af0b0b;
}

.center-content {
    text-align: center;
    margin-bottom: 30px; /* Adjust this for spacing between sections */
}

.center-heading {
    font-size: 2.5rem; /* Adjust font size as needed */
    margin-bottom: 10px; /* Space between H1 and paragraph */
}

.center-paragraph {
    font-size: 1.2rem; /* Adjust font size as needed */
}

.text-line {
    display: flex;
    justify-content: center;
    gap: 50px; /* Adjust gap to control space between the two texts */
}

.left-text, .right-text {
    font-size: 1.5rem; /* Adjust font size as needed */
}

.ph {
    font-size: 15px;
    word-wrap: break-word;
    overflow-wrap: break-word;
    max-width: calc(50ch * 1.2); /* Adjust this value to fit 6 characters per line */
}

.phh {
    font-size: 18px;

}

/* Vendor Carousel Image Styling */
.vimg {
    height: 100px;            /* Adjust for larger image size */
    width: auto;
    margin: 0 auto;
    object-fit: contain;      /* Maintains aspect ratio */
    transition: transform 0.3s ease;
}

/* Optional Hover Effect */
.vimg:hover {
    transform: scale(1.05);
}

/* Carousel Container Padding & Centering */
.vendor-carousel {
    padding: 20px 0;
}

/* Owl Carousel Item Alignment */
.owl-carousel .owl-item {
    display: flex;
    justify-content: center;
    align-items: center;
}


/* Navigation Buttons (if used) */
.owl-nav button {
    font-size: 2rem;
    color: #000;
    background: transparent;
    border: none;
    margin: 0 10px;
}

/* Dots Styling */
.owl-dots {
    text-align: center;
    margin-top: 15px;
}


/* marquee styling start */
.marquee {
    vertical-align: middle;
    width: 50%;
    height: auto;
    border: 0.5px solid black;
    border-radius: 16px;
    font-weight: 500;
    margin-bottom: 20px;
}
/* marquee styling end */


@media (min-width: 320px) and (max-width: 423px) {
    .marquee {
        vertical-align: middle;
        width: 80%; /* Ensures the marquee takes 80% of the screen width */
        height: auto; /* Auto height for responsive adjustment */
        border: 0.5px solid black; /* Subtle border */
        border-radius: 16px; /* Rounded corners for modern look */
        font-weight: 500; /* Medium font weight for clarity */
        text-align: center; /* Center the text inside the marquee */
        font-size: 14px; /* Adjust font size for smaller screens */
        background-color: #f9f9f9; /* Optional: Light background for visibility */
        margin: 10px auto; /* Center the marquee with some spacing */
        overflow: hidden; /* Ensure any overflow content is hidden */
    }
}

 /* General Styling for Section */
 .product-services {
    background-color: #fff;
    padding: 60px 0;
}

.product-services .section-header h2 {
    text-align: center;
    font-size: 28px;
    font-weight: 700;
    color: #333;
}


/* General Section Styling */
.values-section-title {
    padding-bottom: 20px;
}

.values-section-title h5 {
    font-size: 24px;
    letter-spacing: 1px;
    color: #28a745;
}

/* Our Value section start here */
    .our-values-container {
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
        margin: 20px auto;
        max-width: 1200px;
    }

    .our-value-item {
        width: 30%;
        text-align: center;
        margin-bottom: 30px;
        transition: transform 0.3s ease-in-out;
    }

    .our-value-item img {
        width: 120px;
        height: 120px;
        margin-bottom: 10px;
        transition: transform 0.3s ease;
    }

    .our-value-item p {
        font-size: 16px;
        font-weight: 600;
        color: #06A3DA;;
    }

    .our-value-item:hover {
        transform: translateY(-10px);
    }

    .our-value-item:hover img {
        transform: scale(1.1);
    }
    /* Our Value section end here */

    /* Responsive */
    @media (max-width: 768px) {
        /* Our Value section start here */
        .our-value-item {
            width: 45%;
        }
        /* Our Value section end here */
    }

    @media (max-width: 480px) {
        /* Our Value section start here */
        .our-value-item {
            width: 100%;
        }
        /* Our Value section end here */
    }

.item {
            background: #f8f9fa;
            /* border: 1px solid #ddd; */
            border-radius: 5px;
            padding: 20px;
            text-align: left;
            margin-bottom: 20px;
        }


/* second carousel styling start */

.custom-carousel {
    position: relative;
    overflow: hidden;
    
    width: 100%;
}

.custom-carousel-inner {
    display: flex;
    transition: transform 0.5s ease;
}

.custom-carousel-item {
    min-width: 30%; /* Adjust according to how many items you want visible */
    height:300px;
    box-sizing: border-box;
    
}

.custom-card {
    width: 100%;
}

.carousel-controls {
    position: absolute;
    bottom: 10px; /* Position the buttons at the bottom */
    right: 10px;  /* Align them to the right */
    display: flex;
    gap: 10px;    /* Add space between the buttons */
}

.btn-pink {
    background-color: #fcb2b2 !important;
}

.custom-card-img-top {
    height: 200px;
    border-radius: 12px;
}

/* second carousel styling end */

/* third carousel styling start */
.awards-carousel {
position: relative;
overflow: hidden;
width: 100%;
}

.awards-carousel-inner {
display: flex;
transition: transform 0.5s ease;
}

.awards-carousel-item {
min-width: 30%; /* Adjust according to how many items you want visible */
box-sizing: border-box;
}

.awards-card {
width: 100%;
}

.awards-carousel-controls {
position: absolute;
bottom: 10px; /* Position the buttons at the bottom */
right: 10px;  /* Align them to the right */
display: flex;
gap: 10px;    /* Add space between the buttons */
}

.btn-blue {
background-color: #b2d4fc !important; /* Change color as needed */
}

.awards-card-img-top {
height: 200px;
border-radius: 12px;
}

/* third carousel styling end */


/* vendor styling image start */

/* Vendor Carousel Styles */
.vendor-carousel {
    display: flex;
    gap: 20px; /* Gap between the images */
    justify-content: center;
    align-items: center; /* Keep images vertically centered */
}

.vimg {

    height: 120px; /* Set the new height */
    width: auto; /* Maintain aspect ratio by adjusting the width automatically */
    object-fit: contain; /* Ensures images fit without distortion */
    transition: transform 0.3s ease-in-out; /* Smooth hover effect */
}

.vimg:hover {
    transform: scale(1.05); /* Slight zoom effect on hover */
}

.bg-white {
    padding: 20px; /* Add padding to give some space around the carousel */
    border-radius: 10px; /* Optional: rounding the corners of the background */
}

.container-fluid {
    overflow: hidden; /* Ensures no overflow outside the container */
}


/* vendor styling image end */





/* icons styling start */

.custom-prev-icon, .custom-next-icon {
    width: 20px;  /* Adjust as necessary */
    height: auto; /* Maintain aspect ratio */
}


/* icons styling end */

/* row replacer start */
    
.row-replacer {
    --bs-gutter-y: 0;
    display: flex;
    flex-wrap: wrap;
    margin-top: calc(var(--bs-gutter-y)* -1);
    margin-right: calc(var(--bs-gutter-x) / -2);
}

/* row replacer start */



/* Help me decide start */

.full-width-container {
    width: 100%;
    padding: 20px;
    box-sizing: border-box;
    background-color: #f5f5f5;
}

.center-content {
    text-align: center;
    margin-bottom: 30px; /* Adjust this for spacing between sections */
}

.center-heading {
    font-size: 2.5rem; /* Adjust font size as needed */
    margin-bottom: 10px; /* Space between H1 and paragraph */
}

.center-paragraph {
    font-size: 1.2rem; /* Adjust font size as needed */
}

.text-line {
    display: flex;
    justify-content: center;
    gap: 50px; /* Adjust gap to control space between the two texts */
}

.left-text, .right-text {
    font-size: 1.5rem; /* Adjust font size as needed */
}

.ph {
    font-size: 15px;
    word-wrap: break-word;
    overflow-wrap: break-word;
    max-width: calc(50ch * 1.2); /* Adjust this value to fit 6 characters per line */
}

.phh {
    font-size: 18px;

}


/* contact styling start here */
/* General form input styling */
.form-control {
    height: 55px;
    border: none;
    background-color: #EEF9FF;
    box-shadow: none;
    transition: all 0.2s;
}

/* To ensure proper width and alignment */
.row .col-md-6 {
    padding-right: 15px;
    padding-left: 15px;
}

.form-control:focus {
    border-color: #80bdff;
    background-color: #fff;
    box-shadow: 0 0 5px rgba(0, 123, 255, 0.25);
}

/* Ensure equal height and width for name and email */
.row .col-md-6 .form-control {
    width: 100%;
}

/* Space between rows */
.mt-3 {
    margin-top: 1rem;
}


.w-100 {
    width: 100%;
}
